Xbasic

<= Less than or Equal to

Description

This operator results in TRUE if the expression to the left of the operator is less than, or equal to, the expression to the right.

<= Less than or Equal to Examples:

If SALES is 1000 or less

? SALES <= 1000
= .T.

If LASTNAME is "Harris" or precedes "Harris" in an alphabetical ordering of names

? LASTNAME <= "Harris"
= .T.

See Also